跳到主要内容

C++ 解引用和成员访问

为能简化 (*it).mem 这类表达式,我们定义箭头运算符,例如

for (auto it = text.cbegin(); it != text.cend() && !it->empty(); ++it)